home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src890906.arc / NRS.H < prev    next >
C/C++ Source or Header  |  1989-08-19  |  1KB  |  41 lines

  1. #ifndef    NRS_ALLOC
  2.  
  3. #include "global.h"
  4.  
  5. /* SLIP definitions */
  6. #define    NRS_ALLOC    40    /* Receiver allocation increment */
  7.  
  8. #define STX    0x02        /* frame start */
  9. #define ETX 0x03        /* frame end */
  10. #define DLE    0x10        /* data link escape */
  11. #define NUL 0x0            /* null character */
  12.  
  13. /* packet unstuffing state machine */
  14. #define NRS_INTER    0        /* in between packets */
  15. #define NRS_INPACK    1        /* we've seen STX, and are in a the packet */
  16. #define NRS_ESCAPE    2        /* we've seen a DLE while in NRS_INPACK */
  17. #define NRS_CSUM    3        /* we've seen an ETX, and are waiting for the checksum */
  18.  
  19. /* net/rom serial protocol control structure */
  20. struct nrs {
  21.     struct mbuf *sndq;    /* Encapsulated packets awaiting transmission */
  22.     int16 sndcnt;        /* Number of datagrams on queue */
  23.     char state;            /* Receiver State control flag */
  24.     unsigned char csum;    /* Accumulating checksum */
  25.     struct mbuf *rbp;    /* Head of mbuf chain being filled */
  26.     struct mbuf *rbp1;    /* Pointer to mbuf currently being written */
  27.     char *rcp;            /* Write pointer */
  28.     int16 rcnt;            /* Length of mbuf chain */
  29.     struct mbuf *tbp;    /* Transmit mbuf being sent */
  30.     long errors;        /* Checksum errors detected */
  31.     long packets ;        /* Number of packets received successfully */
  32.     struct iface *iface ;    /* Associated interface structure */
  33. };
  34.  
  35. extern struct nrs Nrs[];
  36. /* In nrs.c: */
  37. int nrs_raw __ARGS((struct iface *iface,struct mbuf *bp));
  38. void nrs_recv __ARGS((int dev,void *v1,void *v2));
  39.  
  40. #endif    /* NRS_ALLOC */
  41.